博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
freemarker 分页逻辑
阅读量:6251 次
发布时间:2019-06-22

本文共 1378 字,大约阅读时间需要 4 分钟。

<#--  分页组件    需要传入的参数 pageUrl ,用来生成的html地址,在pageUrl中必须有{page}在生成html地址的时候会自动把页码给赋值上去。页码起始值为1    @pageNum 最大显示页 默认9    @beforPage 前显示页 默认3    @afterPage  后显示页 默认3    @countPage 总页数   必须传入    @currentPage 当前页 必须传入    @currentPageClass 选中页码传递的样式,实现为直接将值贴给元素     @pageUrl  请求地址模板 ,内容中必须含有{page}用来替换页码 --><#assign pageNum = pageNum!9><#assign beforPage = beforPage!3><#assign afterPage = afterPage!3><#assign countPage =countPage!page.countPageNumber><#assign currentPage = currentPage!page.currentNumber><#assign currentPageClass = currentPageClass!"class='thispage'"><#assign pageUrl = pageUrl><#-- 分页地址 --><#function getPageUrl page> <#return pageUrl?replace('{page}',page)>
<#if (countPage > 1)> <#if currentPage != 1>
上一页
      <#if (countPage > pageNum)><#-- 总页数大于最大显示页 --> <#if (pageNum > currentPage)><#-- 当前页小于显示页 --> <#list 1..pageNum as index> ${currentPageClass}
>${index}
<#else> 1... <#list currentPage-beforPage..currentPage + afterPage as index> <#if (index > 0) && (index < countPage)> ${currentPageClass}
>${index}
  <#if (currentPage < countPage - afterPage)>...
<#if currentPage == countPage>${currentPageClass}
>${countPage}
<#else><#-- 总页数小于显示页 --> <#list 1..countPage as index> ${currentPageClass}
>${index}
<#if countPage != currentPage> 下一页

转载于:https://my.oschina.net/wjgood/blog/97489

你可能感兴趣的文章
几个常用的ASP木马
查看>>
python分析postfix邮件日志的状态
查看>>
Mysql-5.6.x多实例配置
查看>>
psutil
查看>>
在git@osc上托管自己的代码
查看>>
机器学习算法:朴素贝叶斯
查看>>
小五思科技术学习笔记之扩展访问列表
查看>>
使用Python脚本检验文件系统数据完整性
查看>>
使用MDT部署Windows Server 2003 R2
查看>>
Redhat as5安装Mysql5.0.28
查看>>
通过TMG发布ActiveSync
查看>>
Web服务器的配置与管理(4) 配置访问权限和安全
查看>>
爆牙齿的Web标准面试考题II(iPhone SMS/iChat UI的Web标准实现)
查看>>
XMOVE3.0手持终端——软件介绍(二):在2KB内存的单片机上实现的彩屏GUI控件库
查看>>
MVC系列——MVC源码学习:打造自己的MVC框架(三:自定义路由规则)
查看>>
找小于N 的所有质数
查看>>
Windows下的Jupyter Notebook 的介绍(写给新手)(图文详解)
查看>>
iOS开发-CocoaPods实战
查看>>
JS组件系列——Bootstrap 树控件使用经验分享
查看>>
HTML-color:rgb()-颜色渐进
查看>>